﻿; USAGE:
;
; Basic structure of an AI purchasing event:
; { 
; #NAME= Event name (this will be shown as a selectable event under an OPTIONS screen within the game)
; #POPUP= Event popup text (this will be displayed when the event occurs)
; #FLAG= Will this be a default event for the campaign? (values range [0, 1]; True= 1; False= 0)
; #TYPE= Values range [0, 3];
;        With all other fields satisfied will this be:
;        0 = Single check regardless if #TRIGGER is satisfied
;        1 = Multiple check until #TRIGGER is satisfied
;        2 = Reoccuring check until end of game
;                       OR
;        Once the #DATE field is satisfied:
;        3 = Event fires once if all other fields are satisfied, else it will not fire.  Either way, event will be removed never to be looked at again
; #LEVEL= What minimum skill level, as selected from the AI difficulty level screen in game, with this event apply to?
;         Values: [0, 4]; Green= 0; Novice= 1; Intermediate= 2; Veteran= 3; Expert= 4
; #GV= Does the event activate based on the Global Variable values assigned?
;      Ten random Global Variables are assigned at the start of the campaign each with a value between [1,100]
;      Format: GV [min, max]; GV range [1,10]; min range [1,100]; max range [1,100]
;      Example A) #GV= 1[1,100] will always trigger because Global Variable #1 will always have a value between [1,100]
;      Example B) #GV= 4[71,100] will trigger 30% per game
; #LINK= Does the event activate based on the Link values assigned?
;        A campaign can have up to 1100 Decision events and is referenced by other events via this parameter
;        Format: decision[flag]; flag range [0, 1]; True= 1; False= 0
;        Example A) #LINK= 0[0] will always trigger as formal DECISION events can only be from 1-1100
;        Example B) #LINK= 1[0] will trigger whenever #DECISION= 1 is not accepted
;        Example C) #LINK= 3[1] will trigger whenever #DECISION= 3 is accepted
; #TRIGGER= Trigger percentage that the event will occur (values range [0, 100])
; #COUNTRY_ID= Country ID associated with this event
; #SKIP_FUNDS_CHECK= Should we skip the applicable funds check? (values range [0, 1]; True= 1; False= 0)
;
; #UNIT_ID_0= Army Group HQ
; #UNIT_ID_1= Replacements
; #UNIT_ID_3= Infantry Corps
; #UNIT_ID_4= Infantry Corps
; #UNIT_ID_5= Infantry Corps
; #UNIT_ID_7= Commandos
; #UNIT_ID_9= Airborne Corps
; #UNIT_ID_13= Partisans
; #UNIT_ID_15= Interceptors
; #UNIT_ID_17= Artillery
; #UNIT_ID_21= Rockets
; #UNIT_ID_25= Armor Corps
; #UNIT_ID_26= Armor Corps
; #UNIT_ID_27= Armor Corps
; #UNIT_ID_29= Fighters
; #UNIT_ID_30= Tactical Bombers
; #UNIT_ID_32= Strategic Bombers
; #UNIT_ID_36= Fleet
; #UNIT_ID_37= Fleet
; #UNIT_ID_40= ASW
; #UNIT_ID_43= Sub
;
; Will these unit types be purchased by the AI?
; Format: % chance assigned to this purchase [max_units]
;
; #DATE= Date that must be satisfied (in game) for event to occur (format yyyy/mm/dd)
; #FRIENDLY_POSITION= Positions that must be under friendly control in order for event to occur
; #VARIABLE_CONDITION= Under what variable conditions will this event occur
;                      Format: country_id [political_alignment] [min_activation%] [surrendered_flag]
; #TACTICAL_CONDITION= Tactical map position (resource) that currently MUST NOT be threatened for event to
;                      occur, i.e. plan owner should have tactical advantage over this position
;                      Format: x,y [tactical_flag]
; #ACTIVATE_POSITION= Condition positions that will serve to ACTIVATE the event.
;                     Looks at distance as well as a selected number of Axis/Allied units as specified by 'alignment' flag
;                     Format: x,y [min_range, max_range] [min_units, max_units] [alignment]
; #CANCEL_POSITION= Condition positions that will serve to CANCEL the event.
;                   Looks at distance as well as a selected number of Axis/Allied units as specified by 'alignment' flag
;                   Format: x,y [min_range, max_range] [min_units, max_units] [alignment]
; }
;
; NOTES:
;
; Each event must be preceded by a '{' and end with a '}'
;
; Purchase Plan identity is determined by #COUNTRY_ID.  A country can only have a single plan based on this
; criteria and will be assigned the first valid plan regardless of duplicate script entries (even if the 
; remaining control '#' values are different).
; Note:  This will also allow you to set up a variety of plans with the same identity but different
; control '#' parameters where the first 'event' satisfied will be the fist plan assigned (for added variability).
;
; Unit type purchase lines are read one line at a time so there is no need to set a total sum of unit
; purchase percentages equal to 100%, i.e. each line is read and the % chance of purchasing the unit is
; based on the % chance assigned to the particular unit type.
; Note:  Even if the % chance is successful the #COUNTRY_ID in question needs sufficient funds to make the
; final purchase.  If no unit type is successfully determined to be purchased then the AI will make no
; purchases for that particular event.
;
; #FRIENDLY_POSITION - First position must refer to a land tile, subsequent positions can refer to either land or coastal tiles.
; Note:  More than one #FRIENDLY_POSITION can be set.  #FRIENDLY_POSITION refers to the current side associated with this 
;        plan.  Each #FRIENDLY_POSITION will be read using AND logic.
;
;        For all AI scripts that use the #FRIENDLY_POSITION field, the AI picks available units closest to and connected to
;        the first #FRIENDLY_POSITION, within #RANGE, and then sends them to the nearest available position for the script; 
;        e.g., a city for a GUARD script, a port for a TRANSPORT script, etc.  All AI scripts require that the first 
;        #FRIENDLY_POSITION be a land tile, with the exception of Fleet scripts.
;
; #VARIABLE_CONDITION - More than one #VARIABLE_CONDITION can be set.  Under #VARIABLE_CONDITION you can also list 
; countries that have not yet fully entered the war.  For example by listing an activation % less than 100% you
; are providing a check where the #VARIABLE_CONDITION country must meet a minimum activation % (but is
; not yet at 100%) in order for the event to occur.  To check for a fully activated country simply
; list the activation % at 100%.  Each #VARIABLE_CONDITION line will be read using AND logic.
;
; More than one #TACTICAL_CONDITION can be set.  #TACTICAL_CONDITION refers to the current side, i.e.
; country associated with this plan having tactical superiority over the specified map position.
; Tactical superiority can be fine tuned via the TACTICAL_ID flag.  Each #TACTICAL_CONDITION line will
; be read using AND logic.
; Note:  TACTICAL_ID= SEA implies that the port or city in question has an adjacent enemy unit in order for it
;        to be threatened.  For example a land locked city can never be threated by SEA so this can be used as a
;        dummy position.
;
; More than one #ACTIVATE_POSITION can be set.  Distance or range checks will be based on the
; specified x,y position.  For example if the x,y position is a coastal tile then range checks will
; be made on sea tiles, otherwise if it is a land tile range checks will be made on land tiles only.
; Each #ACTIVATE_POSITION line will be read using OR logic.
; Note: Once a plan has been properly activated then all references to #ACTIAVATE_POSITION are removed
;       from the plan as these conditions have been satisfied.  Use #CANCEL_POSITION to set the CANCEL conditions
;       based on unit positions for the event.
;
; More than one #CANCEL_POSITION can be set.  Distance or range checks will be based on the
; specified x,y position.  For example if the x,y position is a coastal tile then range checks will
; be made on sea tiles, otherwise if it is a land tile range checks will be made on land tiles only.
; Each #CANCEL_POSITION line will be read using OR logic.
;
; Use the reference values provided for #COUNTRY_ID and not the country names
; Use the reference values provided for TACTICAL_ID and not tactical names
; Use the reference values provided for POLITICAL ALIGNMENT and not names
; Use the reference values provided for SURRENDER flags and not names
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; COUNTRY ID REFERENCE VALUES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; #COUNTRY_ID_3= Albania
; #COUNTRY_ID_4= Algeria
; #COUNTRY_ID_8= Baltic States
; #COUNTRY_ID_10= Belgium
; #COUNTRY_ID_19= Bulgaria
; #COUNTRY_ID_21= Canada
; #COUNTRY_ID_31= Denmark
; #COUNTRY_ID_36= Egypt
; #COUNTRY_ID_39= Finland
; #COUNTRY_ID_40= France
; #COUNTRY_ID_45= Germany
; #COUNTRY_ID_46= Greece
; #COUNTRY_ID_52= Hungary
; #COUNTRY_ID_56= Iraq
; #COUNTRY_ID_57= Ireland
; #COUNTRY_ID_59= Italy
; #COUNTRY_ID_63= Libya
; #COUNTRY_ID_65= Luxembourg
; #COUNTRY_ID_70= Morocco
; #COUNTRY_ID_73= Netherlands
; #COUNTRY_ID_78= Norway
; #COUNTRY_ID_79= Palestine
; #COUNTRY_ID_82= Persia
; #COUNTRY_ID_85= Poland
; #COUNTRY_ID_87= Portugal
; #COUNTRY_ID_93= Romania
; #COUNTRY_ID_95= Saudi Arabia
; #COUNTRY_ID_99= Spain
; #COUNTRY_ID_103= Sweden
; #COUNTRY_ID_105= Syria
; #COUNTRY_ID_109= Trans-Jordan
; #COUNTRY_ID_110= Tunisia
; #COUNTRY_ID_111= Turkey
; #COUNTRY_ID_112= Britain
; #COUNTRY_ID_115= United States
; #COUNTRY_ID_116= Russia
; #COUNTRY_ID_118= Vichy France
; #COUNTRY_ID_120= Yugoslavia
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; LEVEL REFERENCE VALUES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; GREEN= 0
; NOVICE= 1
; BEGINNER= 2
; INTERMEDIATE= 3
; ADVANCED= 4
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; TACTICAL ID REFERENCE VALUES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; ANY= 0
; LAND= 1
; AIR= 2
; NAVAL= 3
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; POLITICAL ALIGNMENT REFERENCE VALUES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; NEUTRAL= 0
; AXIS= 1
; ALLIED= 2
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; SURRENDERED FLAG REFERENCE VALUES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; NOT_SURRENDERED= 0
; SURRENDERED= 1
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;



;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; ALLIED SCRIPTS - Britain
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

{
#NAME= Britain (1944- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 112
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 50 [1]
; Replacements
#UNIT_ID_1= 100 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [1]
; Infantry Corps
#UNIT_ID_4= 100 [2]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 50 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 100 [1]
; Armor Corps
#UNIT_ID_26= 100 [1]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 50 [1]
: Tactical Bombers
#UNIT_ID_30= 50 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 50 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 50 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 50 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1944/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
#FRIENDLY_POSITION= 108,21
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 108,21 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Britain (1943- ) (NO Sealion)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 112
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 50 [1]
; Replacements
#UNIT_ID_1= 100 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [1]
; Infantry Corps
#UNIT_ID_4= 100 [2]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 30 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 100 [1]
; Armor Corps
#UNIT_ID_26= 100 [1]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 40 [1]
: Tactical Bombers
#UNIT_ID_30= 40 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 20 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 30 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1943/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
#FRIENDLY_POSITION= 108,21
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 108,21 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Britain (1943- ) (Sealion)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[1,100]
#LINK= 9[1]
#TRIGGER= 100
#COUNTRY_ID= 112
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 50 [1]
; Replacements
#UNIT_ID_1= 100 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [1]
; Infantry Corps
#UNIT_ID_4= 100 [2]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 30 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 100 [1]
; Armor Corps
#UNIT_ID_26= 100 [1]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 40 [1]
: Tactical Bombers
#UNIT_ID_30= 40 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 20 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 30 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1943/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
#FRIENDLY_POSITION= 108,21
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 108,21 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Britain (1942) (Land Strategy) (NO Sealion)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[1,20]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 112
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 100 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [2]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [2]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 30 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 100 [1]
; Armor Corps
#UNIT_ID_26= 100 [1]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 30 [1]
: Tactical Bombers
#UNIT_ID_30= 30 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 20 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
#FRIENDLY_POSITION= 108,21
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 108,21 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Britain (1942) (Air Strategy) (NO Sealion)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[21,40]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 112
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 100 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [1]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 20 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 100 [1]
; Armor Corps
#UNIT_ID_26= 75 [1]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 40 [1]
: Tactical Bombers
#UNIT_ID_30= 40 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 30 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
#FRIENDLY_POSITION= 108,21
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 108,21 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Britain (1942) (Naval Strategy) (NO Sealion)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[41,60]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 112
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 100 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [1]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 20 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 100 [1]
; Armor Corps
#UNIT_ID_26= 75 [1]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 30 [1]
: Tactical Bombers
#UNIT_ID_30= 30 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 20 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 30 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 40 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
#FRIENDLY_POSITION= 108,21
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 108,21 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Britain (1942) (Default Strategy) (NO Sealion)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[61,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 112
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 100 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [1]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 20 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 100 [1]
; Armor Corps
#UNIT_ID_26= 75 [1]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 30 [1]
: Tactical Bombers
#UNIT_ID_30= 30 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 20 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
#FRIENDLY_POSITION= 108,21
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 108,21 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Britain (1942) (Land Strategy) (Sealion)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[1,20]
#LINK= 9[1]
#TRIGGER= 100
#COUNTRY_ID= 112
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 100 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [2]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [2]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 30 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 100 [1]
; Armor Corps
#UNIT_ID_26= 75 [1]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 30 [1]
: Tactical Bombers
#UNIT_ID_30= 30 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 20 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
#FRIENDLY_POSITION= 108,21
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 108,21 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Britain (1942) (Air Strategy) (Sealion)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[21,40]
#LINK= 9[1]
#TRIGGER= 100
#COUNTRY_ID= 112
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 100 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [1]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 20 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 100 [1]
; Armor Corps
#UNIT_ID_26= 50 [1]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 40 [1]
: Tactical Bombers
#UNIT_ID_30= 40 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 30 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
#FRIENDLY_POSITION= 108,21
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 108,21 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Britain (1942) (Naval Strategy) (Sealion)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[41,60]
#LINK= 9[1]
#TRIGGER= 100
#COUNTRY_ID= 112
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 100 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [1]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 20 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 100 [1]
; Armor Corps
#UNIT_ID_26= 50 [1]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 30 [1]
: Tactical Bombers
#UNIT_ID_30= 30 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 20 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 30 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 40 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
#FRIENDLY_POSITION= 108,21
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 108,21 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Britain (1942) (Default Strategy) (Sealion)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[61,100]
#LINK= 9[1]
#TRIGGER= 100
#COUNTRY_ID= 112
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 100 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [1]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 20 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 100 [1]
; Armor Corps
#UNIT_ID_26= 50 [1]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 30 [1]
: Tactical Bombers
#UNIT_ID_30= 30 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 20 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
#FRIENDLY_POSITION= 108,21
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 108,21 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Britain (1941)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 112
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 100 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 75 [1]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 100 [1]
; Armor Corps
#UNIT_ID_26= 75 [1]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 20 [1]
: Tactical Bombers
#UNIT_ID_30= 20 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 10 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1941/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
#FRIENDLY_POSITION= 108,21
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - London not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 108,21 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= British Commonwealth (Britain Moves Capital To Canada)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[1,100]
#LINK= 9[1]
#TRIGGER= 100
#COUNTRY_ID= 112
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 100 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [1]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 20 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 100 [1]
; Armor Corps
#UNIT_ID_26= 75 [1]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 30 [1]
: Tactical Bombers
#UNIT_ID_30= 30 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 5 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Montreal
#FRIENDLY_POSITION= 10,29
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Montreal not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 10,29 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Britain - Holding Manchester (London Occupied)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 112
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 20 [1]
; Replacements
#UNIT_ID_1= 100 [2]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 75 [1]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 75 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 10 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 50 [1]
; Armor Corps
#UNIT_ID_26= 50 [1]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 20 [1]
: Tactical Bombers
#UNIT_ID_30= 20 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 5 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 5 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 10 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Manchester
#FRIENDLY_POSITION= 107,17
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Manchester not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 107,17 [3]
; Set activate position (Axis units in London)
#ACTIVATE_POSITION= 108,21 [0,0] [1,1] [1]
; Set cancel position (Allied units in London)
#CANCEL_POSITION= 108,21 [0,0] [1,1] [2]
}

{
#NAME= Britain Minor Canada (1939- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 21
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 20 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 75 [1]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 50 [1]
: Tactical Bombers
#UNIT_ID_30= 0 [0]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 50 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
; 2nd Line - Ottawa
#FRIENDLY_POSITION= 108,21
#FRIENDLY_POSITION= 7,29
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered AND
; 2nd Line - Canada politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
#VARIABLE_CONDITION= 21 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Ottawa not tactically threatened
#TACTICAL_CONDITION= 7,29 [1]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Britain Minor Spain (1939- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 99
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 20 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 75 [1]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 50 [1]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 25 [1]
: Tactical Bombers
#UNIT_ID_30= 0 [0]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
; 2nd Line - Madrid
#FRIENDLY_POSITION= 108,21
#FRIENDLY_POSITION= 99,38
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered AND
; 2nd Line - Spain politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
#VARIABLE_CONDITION= 99 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Madrid not tactically threatened
#TACTICAL_CONDITION= 99,38 [1]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Britain Minor Turkey (1939- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 111
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 75 [2]
; Infantry Corps
#UNIT_ID_4= 50 [1]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 50 [1]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 25 [1]
: Tactical Bombers
#UNIT_ID_30= 0 [0]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
; 2nd Line - Ankara
#FRIENDLY_POSITION= 108,21
#FRIENDLY_POSITION= 150,39
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered AND
; 2nd Line - Turkey politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
#VARIABLE_CONDITION= 111 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Ankara not tactically threatened
#TACTICAL_CONDITION= 150,39 [1]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Britain Minor Greece (1939 -)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 1[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 46
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 50 [1]
; Infantry Corps
#UNIT_ID_4= 50 [1]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 25 [1]
: Tactical Bombers
#UNIT_ID_30= 0 [0]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - London
; 2nd Line - Athens
#FRIENDLY_POSITION= 108,21
#FRIENDLY_POSITION= 137,43
; Set variable conditions:
; 1st Line - Britain politically aligned with Allies and not surrendered AND
; 2nd Line - Greece politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
#VARIABLE_CONDITION= 46 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Athens not tactically threatened
#TACTICAL_CONDITION= 137,43 [1]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; ALLIED SCRIPTS - France
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= France (1944- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 2[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 40
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 5 [1]
; Replacements
#UNIT_ID_1= 5 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 5 [1]
; Infantry Corps
#UNIT_ID_4= 50 [1]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 50 [1]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 25 [1]
: Tactical Bombers
#UNIT_ID_30= 25 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1944/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Paris
#FRIENDLY_POSITION= 109,26
; Set variable conditions:
; 1st Line - France politically aligned with Allies and not surrendered
; 2nd Line - United States politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 40 [2] [100] [0]
#VARIABLE_CONDITION= 115 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Paris not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 109,26 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= France (1939- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 2[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 40
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 20 [1]
; Replacements
#UNIT_ID_1= 25 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 25 [1]
; Infantry Corps
#UNIT_ID_4= 50 [1]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 30 [1]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 20 [1]
: Tactical Bombers
#UNIT_ID_30= 20 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Paris
#FRIENDLY_POSITION= 109,26
; Set variable conditions:
; 1st Line - France politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 40 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Paris not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 109,26 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; ALLIED SCRIPTS - United States
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= United States (1944- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 3[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 115
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 50 [1]
; Replacements
#UNIT_ID_1= 5 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [2]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 50 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 100 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 75 [1]
: Tactical Bombers
#UNIT_ID_30= 75 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 50 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 50 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 50 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1943/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Washington D.C.
#FRIENDLY_POSITION= 6,40
; Set variable conditions:
; 1st Line - United States politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 115 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 6,40 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= United States (1943)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 3[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 115
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [2]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 30 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 50 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 40 [1]
: Tactical Bombers
#UNIT_ID_30= 40 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 30 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 30 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1943/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Washington D.C.
#FRIENDLY_POSITION= 6,40
; Set variable conditions:
; 1st Line - United States politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 115 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 6,40 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= United States (1942) (Land Strategy)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 3[1,20]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 115
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [2]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 30 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 30 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 20 [1]
: Tactical Bombers
#UNIT_ID_30= 20 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 20 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Washington D.C.
#FRIENDLY_POSITION= 6,40
; Set variable conditions:
; 1st Line - United States politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 115 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 6,40 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= United States (1942) (Air Strategy)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 3[21,40]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 115
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 20 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 20 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 30 [1]
: Tactical Bombers
#UNIT_ID_30= 30 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 30 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Washington D.C.
#FRIENDLY_POSITION= 6,40
; Set variable conditions:
; 1st Line - United States politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 115 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 6,40 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= United States (1942) (Naval Strategy)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 3[41,60]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 115
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 20 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 20 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 20 [1]
: Tactical Bombers
#UNIT_ID_30= 20 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 20 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 30 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 40 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Washington D.C.
#FRIENDLY_POSITION= 6,40
; Set variable conditions:
; 1st Line - United States politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 115 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 6,40 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= United States (1942) (Default Strategy) (Post-Entry)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 3[61,100]
#TRIGGER= 100
#COUNTRY_ID= 115
#LINK= 0[0]
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 20 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 20 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 20 [1]
: Tactical Bombers
#UNIT_ID_30= 20 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 20 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Washington D.C.
#FRIENDLY_POSITION= 6,40
; Set variable conditions:
; 1st Line - United States politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 115 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 6,40 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= United States (1942) (Default Strategy) (Pre-Entry)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 3[61,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 115
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 20 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 20 [1]
: Tactical Bombers
#UNIT_ID_30= 20 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 20 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Washington D.C.
#FRIENDLY_POSITION= 6,40
; Set variable conditions:
; 1st Line - United States politically aligned with Allies (not fully active) and not surrendered
#VARIABLE_CONDITION= 115 [2] [0] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 6,40 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

; United States responds to Axis control of London or Gibraltar
{
#NAME= United States (1939 - 1941) (Post-Entry) (Britain)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 3[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 115
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [2]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 25 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 25 [1]
: Tactical Bombers
#UNIT_ID_30= 25 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 20 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 30 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Washington D.C.
#FRIENDLY_POSITION= 6,40
; Set variable conditions:
; 1st Line - United States politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 115 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 6,40 [3]
; Set activate position:
; 1st Line - Axis unit in London
; 2nd Line - Axis unit in Gibraltar
#ACTIVATE_POSITION= 108,21 [1,1] [1,1] [1]
#ACTIVATE_POSITION= 94,44 [1,1] [1,1] [1]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= United States (1939 - 1941) (Post-Entry)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 3[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 115
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 10 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 10 [1]
: Tactical Bombers
#UNIT_ID_30= 10 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 10 [1]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 20 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Washington D.C.
#FRIENDLY_POSITION= 6,40
; Set variable conditions:
; 1st Line - United States politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 115 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 6,40 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

; United States responds to London or Cairo under attack
{
#NAME= United States (1939 - 1941) (Pre-Entry) (Britain)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 3[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 115
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 25 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 10 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 5 [1]
: Tactical Bombers
#UNIT_ID_30= 5 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 10 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Washington D.C.
#FRIENDLY_POSITION= 6,40
; Set variable conditions:
; 1st Line - United States politically aligned with Allies (not fully active) and not surrendered
#VARIABLE_CONDITION= 115 [2] [0] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 6,40 [3]
; Set activate position:
; 1st Line - Axis unit adjacent to London
; 2nd Line - Axis unit adjacent to Cairo
#ACTIVATE_POSITION= 108,21 [1,1] [1,1] [1]
#ACTIVATE_POSITION= 150,55 [1,1] [1,1] [1]
; Set cancel position:
; 1st Line - No Axis unit adjacent to London
; 2nd Line - No Axis unit adjacent to Cairo
#CANCEL_POSITION= 108,21 [1,1] [0,0] [1]
#CANCEL_POSITION= 150,55 [1,1] [0,0] [1]
}

{
#NAME= United States (1939 - 1941) (Pre-Entry) (Russia at war)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 3[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 115
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 50 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 5 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 5 [1]
: Tactical Bombers
#UNIT_ID_30= 5 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 5 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 10 [1]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1940/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Washington D.C.
#FRIENDLY_POSITION= 6,40
; Set variable conditions:
; 1st Line - United States politically aligned with Allies (not fully active) and not surrendered
; 2nd Line - Russia politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 115 [2] [0] [0]
#VARIABLE_CONDITION= 116 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 6,40 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= United States (1939 - 1941) (Pre-Entry) (Russia not at war)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 3[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 115
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 25 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 5 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 0 [0]
: Tactical Bombers
#UNIT_ID_30= 0 [0]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 5 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1940/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Washington D.C.
#FRIENDLY_POSITION= 6,40
; Set variable conditions:
; 1st Line - United States politically aligned with Allies (not fully active) and not surrendered
; 2nd Line - Russia politically aligned with Allies (not fully active) and not surrendered
#VARIABLE_CONDITION= 115 [2] [0] [0]
#VARIABLE_CONDITION= 116 [2] [0] [0]
; Set tactical conditions:
; 1st Line - Washington D.C. not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 6,40 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; ALLIED SCRIPTS - Russia
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;

{
#NAME= Russia (1944- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 4[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 116
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 50 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [3]
; Infantry Corps
#UNIT_ID_4= 100 [3]
; Infantry Corps
#UNIT_ID_5= 100 [3]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 50 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 50 [1]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 100 [3]
; Armor Corps
#UNIT_ID_26= 100 [2]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 50 [1]
: Tactical Bombers
#UNIT_ID_30= 50 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 10 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1944/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Sverdlovsk
#FRIENDLY_POSITION= 188,10
; Set variable conditions:
; 1st Line - Russia politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 116 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Sverdlovsk not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 188,10 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Russia (1943- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 4[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 116
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [3]
; Infantry Corps
#UNIT_ID_4= 100 [3]
; Infantry Corps
#UNIT_ID_5= 100 [3]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 20 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 20 [1]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 75 [3]
; Armor Corps
#UNIT_ID_26= 75 [2]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 30 [1]
: Tactical Bombers
#UNIT_ID_30= 30 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 5 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1943/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Sverdlovsk
#FRIENDLY_POSITION= 188,10
; Set variable conditions:
; 1st Line - Russia politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 116 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Sverdlovsk not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 188,10 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Russia (1942) (Land Strategy)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 4[1,20]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 116
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [2]
; Infantry Corps
#UNIT_ID_4= 100 [2]
; Infantry Corps
#UNIT_ID_5= 100 [2]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 20 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 10 [1]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 100 [2]
; Armor Corps
#UNIT_ID_26= 50 [2]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 10 [1]
: Tactical Bombers
#UNIT_ID_30= 10 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Sverdlovsk
#FRIENDLY_POSITION= 188,10
; Set variable conditions:
; 1st Line - Russia politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 116 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Sverdlovsk not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 188,10 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Russia (1942) (Air Strategy)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 4[21,40]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 116
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [2]
; Infantry Corps
#UNIT_ID_4= 100 [2]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 10 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 10 [1]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 75 [2]
; Armor Corps
#UNIT_ID_26= 25 [2]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 20 [1]
: Tactical Bombers
#UNIT_ID_30= 20 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Sverdlovsk
#FRIENDLY_POSITION= 188,10
; Set variable conditions:
; 1st Line - Russia politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 116 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Sverdlovsk not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 188,10 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Russia (1942) (Default Strategy)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 4[41,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 116
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [2]
; Infantry Corps
#UNIT_ID_4= 100 [2]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 10 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 10 [1]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 75 [2]
; Armor Corps
#UNIT_ID_26= 25 [2]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 10 [1]
: Tactical Bombers
#UNIT_ID_30= 10 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Sverdlovsk
#FRIENDLY_POSITION= 188,10
; Set variable conditions:
; 1st Line - Russia politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 116 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Sverdlovsk not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 188,10 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Russia (1939 - 1941) (Post-Entry)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 4[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 116
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 10 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [1]
; Infantry Corps
#UNIT_ID_4= 100 [1]
; Infantry Corps
#UNIT_ID_5= 75 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 10 [1]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 25 [1]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 5 [1]
: Tactical Bombers
#UNIT_ID_30= 5 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Sverdlovsk
#FRIENDLY_POSITION= 188,10
; Set variable conditions:
; 1st Line - Russia politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 116 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Sverdlovsk not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 188,10 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Russia (1939 - 1942) (Pre-Entry)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 4[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 116
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 50 [1]
; Infantry Corps
#UNIT_ID_4= 10 [1]
; Infantry Corps
#UNIT_ID_5= 10 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 10 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 10 [1]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 10 [1]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 5 [1]
: Tactical Bombers
#UNIT_ID_30= 5 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Sverdlovsk
#FRIENDLY_POSITION= 188,10
; Set variable conditions:
; 1st Line - Russia politically aligned with Allies (not fully active) and not surrendered
#VARIABLE_CONDITION= 116 [2] [0] [0]
; Set tactical conditions:
; 1st Line - Sverdlovsk not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 188,10 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; AXIS SCRIPTS - Germany
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= Germany (1944- ) (Fuhrer Bunker)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 5[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 45
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 100 [3]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [2]
; Infantry Corps
#UNIT_ID_4= 100 [2]
; Infantry Corps
#UNIT_ID_5= 100 [2]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 20 [1]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 100 [1]
; Armor Corps
#UNIT_ID_27= 50 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 20 [1]
: Tactical Bombers
#UNIT_ID_30= 10 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1944/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
#FRIENDLY_POSITION= 123,21
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - United States politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
#VARIABLE_CONDITION= 115 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 123,21 [3]
; Set activate position - Allied unit within 6 hexes of Berlin
#ACTIVATE_POSITION= 123,21 [6,6] [1,1] [2]
; Set cancel position - No Allied unit within 6 hexes of Berlin
#CANCEL_POSITION= 123,21 [6,6] [0,0] [2]
}

{
#NAME= Germany (1941- ) (Land Strategy)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 5[1,20]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 45
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 50 [1]
; Replacements
#UNIT_ID_1= 100 [2]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [2]
; Infantry Corps
#UNIT_ID_4= 100 [2]
; Infantry Corps
#UNIT_ID_5= 100 [4]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 50 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 20 [1]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 30 [1]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 100 [3]
; Armor Corps
#UNIT_ID_27= 100 [2]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 30 [1]
: Tactical Bombers
#UNIT_ID_30= 30 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 10 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 15 [1]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1941/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
#FRIENDLY_POSITION= 123,21
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - Russia politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
#VARIABLE_CONDITION= 116 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 123,21 [3]
; Set activate position - No Allied unit within 6 hexes of Berlin
#ACTIVATE_POSITION= 123,21 [6,6] [0,0] [2]
; Set cancel position - Allied unit within 6 hexes of Berlin
#CANCEL_POSITION= 123,21 [6,6] [1,1] [2]
}

{
#NAME= Germany (1941- ) (Air Strategy)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 5[21,40]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 45
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 50 [1]
; Replacements
#UNIT_ID_1= 100 [2]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [2]
; Infantry Corps
#UNIT_ID_4= 100 [2]
; Infantry Corps
#UNIT_ID_5= 100 [3]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 30 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 20 [1]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 20 [1]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 100 [2]
; Armor Corps
#UNIT_ID_27= 100 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 40 [1]
: Tactical Bombers
#UNIT_ID_30= 40 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 10 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 15 [1]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1941/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
#FRIENDLY_POSITION= 123,31
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - Russia politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
#VARIABLE_CONDITION= 116 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 123,21 [3]
; Set activate position - No Allied unit within 6 hexes of Berlin
#ACTIVATE_POSITION= 123,21 [6,6] [0,0] [2]
; Set cancel position - Allied unit within 6 hexes of Berlin
#CANCEL_POSITION= 123,21 [6,6] [1,1] [2]
}

{
#NAME= Germany (1941- ) (Naval Strategy)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 5[41,60]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 45
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 50 [1]
; Replacements
#UNIT_ID_1= 100 [2]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [2]
; Infantry Corps
#UNIT_ID_4= 100 [2]
; Infantry Corps
#UNIT_ID_5= 100 [3]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 30 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 20 [1]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 20 [1]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 100 [2]
; Armor Corps
#UNIT_ID_27= 100 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 30 [1]
: Tactical Bombers
#UNIT_ID_30= 30 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 25 [1]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1941/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
#FRIENDLY_POSITION= 123,21
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - Russia politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
#VARIABLE_CONDITION= 116 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 123,21 [3]
; Set activate position - No Allied unit within 6 hexes of Berlin
#ACTIVATE_POSITION= 123,21 [6,6] [0,0] [2]
; Set cancel position - Allied unit within 6 hexes of Berlin
#CANCEL_POSITION= 123,21 [6,6] [1,1] [2]
}

{
#NAME= Germany (1941- ) (Default Strategy)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 5[61,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 45
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 50 [1]
; Replacements
#UNIT_ID_1= 100 [2]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 100 [2]
; Infantry Corps
#UNIT_ID_4= 100 [2]
; Infantry Corps
#UNIT_ID_5= 100 [3]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 30 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 20 [1]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 20 [1]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 100 [2]
; Armor Corps
#UNIT_ID_27= 100 [1]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 30 [1]
: Tactical Bombers
#UNIT_ID_30= 30 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 10 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 15 [1]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1941/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
#FRIENDLY_POSITION= 123,21
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - Russia politically aligned with Allies and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
#VARIABLE_CONDITION= 116 [2] [100] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 123,21 [3]
; Set activate position - No Allied unit within 6 hexes of Berlin
#ACTIVATE_POSITION= 123,21 [6,6] [0,0] [2]
; Set cancel position - Allied unit within 6 hexes of Berlin
#CANCEL_POSITION= 123,21 [6,6] [1,1] [2]
}

{
#NAME= Germany (1940) (Pre-Barbarossa)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 5[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 45
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 75 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 75 [1]
; Infantry Corps
#UNIT_ID_4= 75 [1]
; Infantry Corps
#UNIT_ID_5= 100 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 30 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 75 [1]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 20 [1]
: Tactical Bombers
#UNIT_ID_30= 20 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 5 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 10 [1]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1940/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
#FRIENDLY_POSITION= 123,21
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - Russia politically aligned with Allies (not fully active) and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
#VARIABLE_CONDITION= 116 [2] [0] [0]
; Set tactical conditions:
; 1st Line - Berlin not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 123,21 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Minor Bulgaria (1939- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 5[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 19
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 75 [1]
; Infantry Corps
#UNIT_ID_4= 0 [0]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 25 [1]
: Tactical Bombers
#UNIT_ID_30= 0 [0]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
; 2nd Line - Sofia
#FRIENDLY_POSITION= 123,21
#FRIENDLY_POSITION= 136,36
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - Bulgaria politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
#VARIABLE_CONDITION= 19 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Sofia not tactically threatened 
#TACTICAL_CONDITION= 136,36 [1]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Minor Finland (1939- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 5[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 39
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 75 [1]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 25 [1]
: Tactical Bombers
#UNIT_ID_30= 0 [0]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
; 2nd Line - Helsinki
#FRIENDLY_POSITION= 123,21
#FRIENDLY_POSITION= 134,8
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - Finland politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
#VARIABLE_CONDITION= 39 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Helsinki not tactically threatened 
#TACTICAL_CONDITION= 134,8 [1]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Minor Hungary (1939- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 5[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 52
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 75 [2]
; Infantry Corps
#UNIT_ID_4= 75 [1]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 25 [1]
: Tactical Bombers
#UNIT_ID_30= 0 [0]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
; 2nd Line - Budapest
#FRIENDLY_POSITION= 123,21
#FRIENDLY_POSITION= 130,29
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - Hungary politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
#VARIABLE_CONDITION= 52 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Budapest not tactically threatened
#TACTICAL_CONDITION= 130,29 [1]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Minor Romania (1939- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 5[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 93
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 75 [2]
; Infantry Corps
#UNIT_ID_4= 75 [1]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 25 [1]
: Tactical Bombers
#UNIT_ID_30= 0 [0]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
; 2nd Line - Bucharest
#FRIENDLY_POSITION= 123,21
#FRIENDLY_POSITION= 141,32
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - Romania politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 5 [1] [100] [0]
#VARIABLE_CONDITION= 93 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Bucharest not tactically threatened
#TACTICAL_CONDITION= 141,32 [1]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

; Vichy France
{
#NAME= Germany Minor Vichy France (1939- )
#POPUP=
#FLAG= 1
#TYPE= 2
#COUNTRY_ID= 118
#TRIGGER= 100
#LEVEL= 0
#GV= 5[1,100]
#LINK= 4[1]
#TRIGGER= 100
#COUNTRY_ID= 118
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 75 [1]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 75 [1]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 0 [0]
: Tactical Bombers
#UNIT_ID_30= 0 [0]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
; 2nd Line - Vichy 
#FRIENDLY_POSITION= 123,21
#FRIENDLY_POSITION= 110,30
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - Vichy France politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 5 [1] [100] [0]
#VARIABLE_CONDITION= 118 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Vichy not tactically threatened
#TACTICAL_CONDITION= 110,30 [1]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Minor Spain (1939- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 5[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 99
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 20 [1]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 75 [2]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 50 [1]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 25 [1]
: Tactical Bombers
#UNIT_ID_30= 0 [0]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
; 2nd Line - Madrid
#FRIENDLY_POSITION= 123,21
#FRIENDLY_POSITION= 99,38
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - Spain politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
#VARIABLE_CONDITION= 99 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Madrid not tactically threatened
#TACTICAL_CONDITION= 99,38 [1]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Minor Turkey (1939- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 5[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 111
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 75 [2]
; Infantry Corps
#UNIT_ID_4= 75 [1]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 50 [1]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 25 [1]
: Tactical Bombers
#UNIT_ID_30= 0 [0]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
; 2nd Line - Ankara
#FRIENDLY_POSITION= 123,21
#FRIENDLY_POSITION= 150,39
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - Turkey politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
#VARIABLE_CONDITION= 111 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Ankara not tactically threatened
#TACTICAL_CONDITION= 150,39 [1]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Minor Greece (1939- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 5[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 46
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 50 [1]
; Infantry Corps
#UNIT_ID_4= 50 [1]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 25 [1]
: Tactical Bombers
#UNIT_ID_30= 0 [0]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
; 2nd Line - Athens
#FRIENDLY_POSITION= 123,21
#FRIENDLY_POSITION= 137,43
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - Greece politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
#VARIABLE_CONDITION= 46 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Athens not tactically threatened
#TACTICAL_CONDITION= 137,43 [1]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Minor Yugoslavia (1939- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 5[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 120
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 75 [1]
; Infantry Corps
#UNIT_ID_4= 50 [1]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 25 [1]
: Tactical Bombers
#UNIT_ID_30= 0 [0]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
; 2nd Line - Belgrade
#FRIENDLY_POSITION= 123,21
#FRIENDLY_POSITION= 131,32
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - Yugoslavia politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
#VARIABLE_CONDITION= 120 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Belgrade not tactically threatened
#TACTICAL_CONDITION= 131,32 [1]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Germany Minor Sweden (1939- )
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 5[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 103
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 0 [0]
; Replacements
#UNIT_ID_1= 0 [0]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 0 [0]
; Infantry Corps
#UNIT_ID_4= 50 [1]
; Infantry Corps
#UNIT_ID_5= 0 [0]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 0 [0]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 0 [0]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 25 [1]
: Tactical Bombers
#UNIT_ID_30= 0 [0]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Berlin
; 2nd Line - Stockholm
#FRIENDLY_POSITION= 123,21
#FRIENDLY_POSITION= 128,10
; Set variable conditions:
; 1st Line - Germany politically aligned with Axis and not surrendered AND
; 2nd Line - Sweden politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
#VARIABLE_CONDITION= 103 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Stockholm not tactically threatened
#TACTICAL_CONDITION= 128,10 [1]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; AXIS SCRIPTS - Italy
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= Italy (1943- ) (Italy Invaded)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 6[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 59
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 10 [1]
; Replacements
#UNIT_ID_1= 50 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 75 [1]
; Infantry Corps
#UNIT_ID_4= 50 [1]
; Infantry Corps
#UNIT_ID_5= 50 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 25 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 25 [1]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 20 [1]
: Tactical Bombers
#UNIT_ID_30= 20 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 0 [0]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1943/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Rome
#FRIENDLY_POSITION= 121,37
; Set variable conditions:
; 1st Line - Italy politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 59 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Rome not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 121,37 [3]
; Set activate position:
; 1st Line - Allied units within 7 hexes of Rome
; 1st Line - Allied units within 5 hexes of Taranto
#ACTIVATE_POSITION= 121,37 [7,7] [1,1] [2]
#ACTIVATE_POSITION= 126,40 [5,5] [1,1] [2]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Italy (1942- ) (Land Strategy)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 6[1,20]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 59
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 75 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 90 [1]
; Infantry Corps
#UNIT_ID_4= 90 [1]
; Infantry Corps
#UNIT_ID_5= 90 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 35 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 90 [1]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 20 [1]
: Tactical Bombers
#UNIT_ID_30= 20 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Rome
#FRIENDLY_POSITION= 121,37
; Set variable conditions:
; 1st Line - Italy politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 59 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Rome not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 121,37 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Italy (1942- ) (Air Strategy)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 6[21,40]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 59
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 75 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 75 [1]
; Infantry Corps
#UNIT_ID_4= 75 [1]
; Infantry Corps
#UNIT_ID_5= 75 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 25 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 75 [1]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 30 [1]
: Tactical Bombers
#UNIT_ID_30= 30 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Rome
#FRIENDLY_POSITION= 121,37
; Set variable conditions:
; 1st Line - Italy politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 59 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Rome not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 121,37 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Italy (1942- ) (Naval Strategy)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 6[41,60]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 59
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 75 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 75 [1]
; Infantry Corps
#UNIT_ID_4= 75 [1]
; Infantry Corps
#UNIT_ID_5= 75 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 25 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 75 [1]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 20 [1]
: Tactical Bombers
#UNIT_ID_30= 20 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 30 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Rome
#FRIENDLY_POSITION= 121,37
; Set variable conditions:
; 1st Line - Italy politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 59 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Rome not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 121,37 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Italy (1942- ) (Default Strategy)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 6[61,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 59
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 30 [1]
; Replacements
#UNIT_ID_1= 75 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 75 [1]
; Infantry Corps
#UNIT_ID_4= 75 [1]
; Infantry Corps
#UNIT_ID_5= 75 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 25 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 75 [1]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 20 [1]
: Tactical Bombers
#UNIT_ID_30= 20 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1942/01/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Rome
#FRIENDLY_POSITION= 121,37
; Set variable conditions:
; 1st Line - Italy politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 59 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Rome not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 121,37 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}

{
#NAME= Italy (1939 - 1941) (Post-Entry)
#POPUP=
#FLAG= 1
#TYPE= 2
#LEVEL= 0
#GV= 6[1,100]
#LINK= 0[0]
#TRIGGER= 100
#COUNTRY_ID= 59
#SKIP_FUNDS_CHECK= 0
; Army Group HQ
#UNIT_ID_0= 10 [1]
; Replacements
#UNIT_ID_1= 25 [1]
#UNIT_ID_2= 0 [0]
: Infantry Corps
#UNIT_ID_3= 50 [1]
; Infantry Corps
#UNIT_ID_4= 50 [1]
; Infantry Corps
#UNIT_ID_5= 50 [1]
#UNIT_ID_6= 0 [0]
; Commandos
#UNIT_ID_7= 0 [0]
#UNIT_ID_8= 0 [0]
; Airborne Division
#UNIT_ID_9= 25 [1]
#UNIT_ID_10= 0 [0]
#UNIT_ID_11= 0 [0]
#UNIT_ID_12= 0 [0]
; Partisans
#UNIT_ID_13= 0 [0]
#UNIT_ID_14= 0 [0]
; Interceptors
#UNIT_ID_15= 0 [0]
#UNIT_ID_16= 0 [0]
; Artillery
#UNIT_ID_17= 0 [0]
#UNIT_ID_18= 0 [0]
#UNIT_ID_19= 0 [0]
#UNIT_ID_20= 0 [0]
; Rockets
#UNIT_ID_21= 0 [0]
#UNIT_ID_22= 0 [0]
#UNIT_ID_23= 0 [0]
#UNIT_ID_24= 0 [0]
; Armor Corps
#UNIT_ID_25= 50 [1]
; Armor Corps
#UNIT_ID_26= 0 [0]
; Armor Corps
#UNIT_ID_27= 0 [0]
#UNIT_ID_28= 0 [0]
; Fighters
#UNIT_ID_29= 10 [1]
: Tactical Bombers
#UNIT_ID_30= 10 [1]
#UNIT_ID_31= 0 [0]
; Strategic Bombers
#UNIT_ID_32= 0 [0]
#UNIT_ID_33= 0 [0]
#UNIT_ID_34= 0 [0]
#UNIT_ID_35= 0 [0]
; Fleet
#UNIT_ID_36= 20 [1]
; Fleet
#UNIT_ID_37= 0 [0]
#UNIT_ID_38= 0 [0]
#UNIT_ID_39= 0 [0]
; ASW
#UNIT_ID_40= 0 [0]
#UNIT_ID_41= 0 [0]
#UNIT_ID_42= 0 [0]
; Submarines
#UNIT_ID_43= 0 [0]
#UNIT_ID_44= 0 [0]
#UNIT_ID_45= 0 [0]
#DATE= 1939/09/01
#DESTINATION_RESOURCE=
; Set friendly positions:
; 1st Line - Rome
#FRIENDLY_POSITION= 121,37
; Set variable conditions:
; 1st Line - Italy politically aligned with Axis and not surrendered
#VARIABLE_CONDITION= 59 [1] [100] [0]
; Set tactical conditions:
; 1st Line - Rome not tactically threatened (dummy condition)
#TACTICAL_CONDITION= 121,37 [3]
; Set dummy activate position (no units at position 0,0)
#ACTIVATE_POSITION= 0,0 [0,0] [0,0] [0]
; Set dummy cancel position (single neutral unit at position 0,0). This is not possible as no
; unit can occupy tile 0,0 so event will not be cancelled due to #CONDITION_POSITION
#CANCEL_POSITION= 0,0 [0,0] [1,1] [0]
}
